public class Cups { public static void main(String arg[]) { while (true) { cups(99); System.out.println( "No more cups of Ayran on the wall" + " Go to the store, buy some more!" ); } } public static void cups(int num) { System.out.println( num + " cups of Ayran on the wall." + " Take one down, pass it around!" ); if (num > 1) cups(num - 1); } }